home *** CD-ROM | disk | FTP | other *** search
- Path: airdmhor.gen.nz!not-for-mail
- From: gumboot@airdmhor.gen.nz (Simon Hosie)
- Newsgroups: comp.lang.c++,rec.games.programmer,alt.msdos.programmer,comp.programming
- Subject: Re: Young programmers read me.
- Followup-To: comp.lang.c++,rec.games.programmer,alt.msdos.programmer,comp.programming
- Date: 13 Apr 1996 08:52:39 +1200
- Organization: My game company
- Message-ID: <4kmfqn$e0f@airdmhor.gen.nz>
- References: <4icpp9$7hr@barad-dur.nas.com> <aidan-0404961557290001@meathook.intac.com> <3165AD94.6F3A@datalytics.com> <j-jahnke-0604960016160001@ntcs-ip8.uchicago.edu> <4keejc$lpi@tpd.dsccc.com> <Pine.OSF.3.91.960411093444.20958D-100000@bud.cc.swin.edu.au>
- NNTP-Posting-Host: airdmhor.gen.nz
- X-Newsreader: TIN [version 1.2 PL2]
-
- On 9 Apr 1996, Kevin Cline wrote:
- > This should not be a problem if the code is properly indented, ala
- >
- > if (something_happened) {
- > do_something_else();
- > }
-
- John Joseph Newbigin:
- > But it is a lot easier to read
- >
- > if(something_happened)
- > {
- > do_something_else();
- > }
-
- Umm.. how about just
-
- if(something_happened)
- do_something_else();
-